GNSS 26 Click
GNSS 26 Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.
Click Library
- Author : Stefan Filipovic
- Date : Mar 2025.
- Type : UART type
Software Support
Example Description
This example demonstrates the use of GNSS 26 Click by reading and displaying the GNSS coordinates.
Example Libraries
- MikroSDK.Board
- MikroSDK.Log
- Click.GNSS26
Example Key Functions
- gnss26_cfg_setup This function initializes Click configuration structure to initial values.
void gnss26_cfg_setup(gnss26_cfg_t *cfg)
GNSS 26 configuration object setup function.
GNSS 26 Click configuration object.
Definition gnss26.h:208
- gnss26_init This function initializes all necessary pins and peripherals used for this Click board.
struct gnss26_s gnss26_t
GNSS 26 Click context object.
err_t gnss26_init(gnss26_t *ctx, gnss26_cfg_t *cfg)
GNSS 26 initialization function.
- gnss26_generic_read This function reads a desired number of data bytes by using UART or I2C serial interface.
err_t gnss26_generic_read(gnss26_t *ctx, uint8_t *data_out, uint16_t len)
GNSS 26 data reading function.
- gnss26_parse_gga This function parses the GGA data from the read response buffer.
err_t
gnss26_parse_gga ( uint8_t *rsp_buf, uint8_t gga_element, uint8_t *element_data );
err_t gnss26_parse_gga(uint8_t *rsp_buf, uint8_t gga_element, uint8_t *element_data)
GNSS 26 parse GGA function.
- gnss26_get_pps_pin This function returns the pulse per second (PPS) pin logic state.
uint8_t gnss26_get_pps_pin(gnss26_t *ctx)
GNSS 26 get PPS pin function.
Application Init
Initializes the driver and logger.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
if ( UART_ERROR ==
gnss26_init( &gnss26, &gnss26_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}
#define GNSS26_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition gnss26.h:146
void application_init(void)
Definition main.c:78
Application Task
Reads the received data, parses the NMEA GGA info from it, and once it receives the position fix it will start displaying the coordinates on the USB UART.
{
if (
GNSS26_OK == gnss26_process( &gnss26 ) )
{
gnss26_parser_application( app_buf );
}
}
@ GNSS26_OK
Definition gnss26.h:238
void application_task(void)
Definition main.c:108
Application Output
This Click board can be interfaced and monitored in two ways:
- Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
- UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.
Additional Notes and Information
The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.